/* ********** General ********** */
body, html, h1, h2, p {
    margin: 0;
    padding: 0;
}
:root {
    --color-yellow: #ffe642;
    --color-green: #25ab75;
    --color-grey: #575757;
    --color-red: #fb1351;
    
}

body, html {
    height: 100%;
}
body {
    background-color: #000;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
}

.wrapper {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-image: url(images/1.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top right;
}
    
.main {
    flex: 1 1 auto;
}
/* ********** /General ********** */

/* ********** Main ********** */
.item {
    display: flex;
    justify-content: flex-start;
    padding: 50px 0;
    border-bottom: 1px solid var(--color-grey);
}
.number, .arrow {
     width: 50px;
     font-size: 25px;
}
.number {
    color: var(--color-grey);
    text-align: left;
    
}
.title {
    width: 100%;
    padding-left:150px; 
    font-size: 30px;
}
.title-link a {
    text-decoration: none;
    color: #fff;
    transition: all .5s;
}
.title a:hover {
    color: var(--color-yellow);
}
.amt {
    color: var(--color-grey);
    font-size:12px;
}
.arrow {
    width: 50px;
    text-align: right;
}
.arrow a {
    color: var(--color-red);
}
/* ********** /Main ********** */

/* ********** Footer ********** */
.footer {
    padding: 50px;
}
.footer a {
    text-decoration: none;
    color: var(--color-grey);
    transition: all .5s;
}
.footer a:hover {
    color: var(--color-yellow);
}
/* ********** /Footer ********** */